home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-26 | 1.4 KB | 31 lines | [TEXT/MMCC] |
- //------------------------------------------------------------------------------
- // File: 3d bound.h
- // Date: 7/20/94
- // Author: Bretton Wade
- //
- // Description: this file contains the class definition for a 3d bound widget.
- //
- //------------------------------------------------------------------------------
-
- #include "bound.h"
-
- #ifndef BOUND3D
- #define BOUND3D
-
- //------------------------------------------------------------------------------
- // classes
- //------------------------------------------------------------------------------
- class bound3d : public bound // bound 3d widget class
- { // begin
- private: // members internal to this class only
- protected: // members internal to this class hierarchy
- bool up; // frame up or down
- public: // members available externally
- bound3d (Rect&, Rect&, bool = TRUE); // constructor
- virtual void Update (EventRecord&); // method to draw the widget and all of its children
- virtual void Draw (void); // draw the widget
- }; // end
-
- //------------------------------------------------------------------------------
-
- #endif //BOUND3D